home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19990725-20000114 / 000323_news@columbia.edu _Mon Dec 6 13:34:21 1999.msg < prev    next >
Internet Message Format  |  2020-01-01  |  2KB

  1. Return-Path: <news@columbia.edu>
  2. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.59.30])
  3.     by watsun.cc.columbia.edu (8.8.5/8.8.5) with ESMTP id NAA25963
  4.     for <kermit.misc@watsun.cc.columbia.edu>; Mon, 6 Dec 1999 13:34:20 -0500 (EST)
  5. Received: (from news@localhost)
  6.     by newsmaster.cc.columbia.edu (8.8.5/8.8.5) id NAA01159
  7.     for kermit.misc@watsun.cc.columbia.edu; Mon, 6 Dec 1999 13:12:31 -0500 (EST)
  8. X-Authentication-Warning: newsmaster.cc.columbia.edu: news set sender to <news> using -f
  9. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  10. Subject: Re: Output command with USR modem
  11. Date: 6 Dec 1999 18:12:30 GMT
  12. Organization: Columbia University
  13. Message-ID: <82guae$144$1@newsmaster.cc.columbia.edu>
  14. To: kermit.misc@columbia.edu
  15.  
  16. In article <s4ntr7lgqeg40@corp.supernews.com>,
  17. Steve Baus <steve@baus-systems.com> wrote:
  18. : OK, I give up.  I have looked through my "Using MS Kermit with version 3.11
  19. : included" and could not find anything on the Answer command.  Looked through
  20. : my "Using C-Kermit" book and again nothing.
  21. Sorry -- you didn't mention which Kermit program you were using so I assumed
  22. it was C-Kermit or K95.  You're right, MS-DOS Kermit does not have an ANSWER
  23. command.  (But "Using C-Kermit", 2nd Edition -- the current one since 1997 --
  24. does describe the ANSWER command; it's in the index, and the material is on
  25. pp.73-74.
  26.  
  27. : All I am trying to do is use a script file to setup a modem using AT
  28. : commands so the modem auto answers, connects at 9600 etc.  Has worked on
  29. : every modem I have tried except US Robotics.
  30. As Jeff recommended, maybe you have to break up the commands in the init
  31. string into individual AT commands.  It might also have something to do with
  32. flow control.  As soon as you get the modem's attention, you should set up
  33. mutual RTS/CTS flow control before doing anything else, to make sure the
  34. commands you send to the modem are not lost or garbled.
  35.  
  36. Actually, a good starting point would be:
  37.  
  38.   ftp://kermit.columbia.edu/kermit/scripts/mskermit/sport.kds
  39.  
  40. This is the updated MS-DOS Kermit US Robotics dialing script.  Maybe you
  41. can just substitute ATS0=1 for the ATD command.
  42.  
  43. - Frank